home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Light ROM 3
/
Light ROM 3 - Disc 2.iso
/
programs
/
amiga
/
jpeggers
/
peggdemo
/
pegr2dem.lha
/
PEGGER_Demo
/
Rexx
/
debug.peg
< prev
next >
Wrap
Text File
|
1993-09-01
|
713b
|
23 lines
/* PEGGER ARexx Script which shows how to debug ARexx Scripts */
/* Example trace command to use with the ARexx global tracing console */
/* Open the global tracing console with the ARexx program 'tco' when */
/* you want to debug a Pre or Post ARexx script. Debugging information */
/* for this ARexx script will be printed to the global tracing console */
/* if you have the following command at the start of your ARexx script */
trace results
/* And now we can get the source JPEG file name and destination image file name */
arg source,dest
say source
say dest
/* Finally set this script to use the PEGGER ARexx port */
address 'PEGGER'
/* Paste in any ARexx scripting you want to try here */